home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / GRAHAM / XAAES_S.ZIP / XAAES / SYS / ,PROFILE next >
Encoding:
Text File  |  1996-02-06  |  1.3 KB  |  70 lines

  1. # SH profile
  2. MINT=/bin 
  3. export MINT
  4. TEMP=/f/temp
  5. export TEMP
  6. TMPDIR=/f/temp
  7. export TMPDIR 
  8.  
  9. # Standard path
  10. PATH=.:/bin:/usr/ucb:/usr/local/bin:/usr/local/bin/X11:/usr/local/bin/gcc:/c/archiver
  11. export PATH
  12.  
  13. SYSSCREENRC=/etc/screenrc
  14. export SYSSCREENRC
  15.  
  16. # MANUAL SYSTEM 
  17. MANPAGER=/bin/manpager.ttp 
  18. export MANPAGER
  19. MANDIR=/usr/man 
  20. export MANDIR
  21. MANPATH=/usr/man
  22. export MANPATH 
  23. TMACDIR=/usr/man/macro 
  24. export TMACDIR
  25.  
  26. # COMPILER ENVIROMENT 
  27. # GNU C / C++ 
  28. GCCEXEC=/usr/local/bin/gcc/gcc-
  29. export GCCEXEC 
  30. GNULIB=/usr/lib
  31. export GNULIB 
  32. GNUINC=/usr/include
  33. export GNUINC
  34. GXXINC= 
  35. export GXXINC
  36. MAKEFILES=/etc/default.mak
  37. export MAKEFILES 
  38. PATH=$PATH:/usr/local/bin/gcc:/usr/local/bin/gcc/gcc-
  39. export PATH
  40. CC=gcc
  41. export CC
  42. AS=gcc-as
  43. export AS 
  44. AR=gcc-ar
  45. export AR
  46.  
  47. PS1=$USER':'
  48. PS2=$USER'>'
  49.  
  50. # Set the TERM variable properly when running under X without logging in
  51. #  MiNT kludge here, as processes appear in the filesystem under /proc
  52. #  this goes through all the files in the /proc directory & checks for
  53. #  one called X.* - so make sure the only program you run called X is the
  54. #  X-Server (started by xinit usually).
  55.  
  56. for i in /proc/*
  57. do
  58.     case $i in
  59.         /proc/X.*) TERM=xterm
  60.                    export TERM ;;
  61.         *) ;;
  62.     esac
  63. done
  64.  
  65.  
  66.